home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Gamer Resource Kit / Hardcore Gamer Resource Kit - Disc 3.iso / screensavers / saver25.zip / SOURCE.ZIP / SAVERWND.H < prev    next >
C/C++ Source or Header  |  1995-08-08  |  1KB  |  50 lines

  1. // saverwnd.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CSaverWnd window
  6.  
  7. class CSaverWnd : public CDrawWnd
  8. {
  9. // Construction
  10. public:
  11.     CSaverWnd();
  12.  
  13. // Attributes
  14. public:
  15.     CPoint m_ptLast;
  16.  
  17. // Operations
  18. public:
  19.     BOOL Create();
  20.  
  21. // Overrides
  22.     // ClassWizard generated virtual function overrides
  23.     //{{AFX_VIRTUAL(CSaverWnd)
  24.     //}}AFX_VIRTUAL
  25.  
  26. // Implementation
  27. public:
  28.     virtual ~CSaverWnd();
  29.  
  30.     // Generated message map functions
  31. protected:
  32.     //{{AFX_MSG(CSaverWnd)
  33.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  34.     afx_msg void OnDestroy();
  35.     afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  36.     afx_msg BOOL OnNcActivate(BOOL bActive);
  37.     afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
  38.     afx_msg void OnActivateApp(BOOL bActive, HTASK hTask);
  39.     afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  40.     afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  41.     afx_msg void OnMButtonDown(UINT nFlags, CPoint point);
  42.     afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  43.     afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  44.     afx_msg void OnSysKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50.